home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Various / S.N.A.G. Disk of the Month 91-03 (1991)(Southern Nevada Amiga Group)(PD).zip / S.N.A.G. Disk of the Month 91-03 (1991)(Southern Nevada Amiga Group)(PD).adf / PIV / glue.a < prev    next >
Text File  |  1991-03-29  |  528b  |  32 lines

  1. ; glue.a
  2. ;
  3. ; for PIV
  4. ;
  5. ; (c) Copyright 1991 J.E.Hanway
  6. ;
  7. ; glue routine for calling original AutoRequest
  8. ; for SAS asm.
  9. ;
  10. ; $Id: glue.a,v 1.1 91/03/13 22:35:40 jeh Exp $
  11. ;
  12. ; $Log:    glue.a,v $
  13. ; Revision 1.1  91/03/13  22:35:40  jeh
  14. ; Initial revision
  15. ;
  16.  
  17.    CSECT text
  18.    xref  _IntuitionBase
  19.    xref  _real_AutoRequest
  20.    
  21.    xdef  _call_AutoRequest
  22.    
  23. _call_AutoRequest:
  24.    movem.l  a5-a6,-(a7)
  25.    movea.l  _IntuitionBase(a4),a6
  26.    movea.l  _real_AutoRequest(a4),a5
  27.    jsr      (a5)
  28.    movem.l  (a7)+,a5-a6
  29.    rts
  30.    
  31.    end